home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / RCS / fgetc.c,v < prev    next >
Text File  |  1991-12-02  |  3KB  |  113 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  sprited:1.1.1;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.1
  10. date     88.06.10.16.23.43;  author ouster;  state Exp;
  11. branches 1.1.1.1;
  12. next     ;
  13.  
  14. 1.1.1.1
  15. date     91.12.02.19.56.09;  author kupfer;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19.  
  20. desc
  21. @@
  22.  
  23.  
  24.  
  25. 1.1
  26. log
  27. @Initial revision
  28. @
  29. text
  30. @/* 
  31.  * fgetc.c --
  32.  *
  33.  *    Source code for the "fgetc" library procedure.
  34.  *
  35.  * Copyright 1988 Regents of the University of California
  36.  * Permission to use, copy, modify, and distribute this
  37.  * software and its documentation for any purpose and without
  38.  * fee is hereby granted, provided that the above copyright
  39.  * notice appear in all copies.  The University of California
  40.  * makes no representations about the suitability of this
  41.  * software for any purpose.  It is provided "as is" without
  42.  * express or implied warranty.
  43.  */
  44.  
  45. #ifndef lint
  46. static char rcsid[] = "$Header: atoi.c,v 1.1 88/04/28 17:20:23 ouster Exp $ SPRITE (Berkeley)";
  47. #endif not lint
  48.  
  49. #include "stdio.h"
  50.  
  51. /*
  52.  *----------------------------------------------------------------------
  53.  *
  54.  * fgetc --
  55.  *
  56.  *    This procedure returns the next input character from a stream.
  57.  *    It's a procedural version of the getc macro, and also
  58.  *    gets invoked by getc when the buffer needs to be refilled.
  59.  *
  60.  * Results:
  61.  *    The result is an integer value that is equal to EOF if an end
  62.  *    of file or error condition was encountered on the stream.
  63.  *    Otherwise, it is the value of the next input character from
  64.  *    stream.
  65.  *
  66.  * Side effects:
  67.  *    A character is removed from stream.
  68.  *
  69.  *----------------------------------------------------------------------
  70.  */
  71.  
  72. int
  73. fgetc(stream)
  74.     register FILE *stream;    /* Stream from which to read character. */
  75. {
  76.     if (!(stream->flags & STDIO_READ)) {
  77.     return(EOF);
  78.     }
  79.     while (stream->readCount <= 0) {
  80.     if ((stream->status != 0) || (stream->flags & STDIO_EOF)) {
  81.         return(EOF);
  82.     }
  83.  
  84.     /*
  85.      * If the stream has been getting used for writing lately,
  86.      * "turn it around" by flushing the write data.  Then read
  87.      * in a buffer-full of read data.
  88.      */
  89.  
  90.     if ((stream->writeCount > 0)
  91.         && (stream->lastAccess >= stream->buffer)) {
  92.         (*stream->writeProc)(stream, 1);
  93.         stream->writeCount = 0;
  94.     }
  95.     (*stream->readProc)(stream);
  96.     }
  97.     stream->readCount--;
  98.     stream->lastAccess++;
  99.     return *stream->lastAccess;
  100. }
  101. @
  102.  
  103.  
  104. 1.1.1.1
  105. log
  106. @Initial branch for Sprite server.
  107. @
  108. text
  109. @d17 1
  110. a17 1
  111. static char rcsid[] = "$Header: /sprite/src/lib/c/stdio/RCS/fgetc.c,v 1.1 88/06/10 16:23:43 ouster Exp $ SPRITE (Berkeley)";
  112. @
  113.